Sketcher ConstrainSymmetric/de

Sketcher SymmetrischFestlegen

Menüeintrag
Skizze → Sketcher-Randbedingungen → Symmetrisch festlegen
Arbeitsbereich
Sketcher
Standardtastenkürzel
S
Eingeführt in Version
-
Siehe auch
Keiner

Beschreibung

Das Werkzeug Sketcher SymmetrischFestlegen: Legt zwei Punkte symmetrisch zu einer Linie oder Achse bzw. zu einem dritten Punkt fest.

Anwendung

Siehe auch: Zeichnungshilfen.

Fortsetzen-Modus

  1. Make sure there is no selection.
  2. There are several ways to invoke the tool:
    • Press the Constrain symmetric button.
    • Select the Sketch → Sketcher constraints → Constrain symmetric option from the menu.
    • introduced in version 1.0: Right-click in the 3D view and select the Constrain → Constrain symmetric option from the context menu.
    • Use the keyboard shortcut: S.
  3. The cursor changes to a cross with the tool icon.
  4. Do one of the following:
    • Select two points and a symmetry point (in that order).
    • Select two points and a symmetry line (idem).
    • Select a point, a symmetry line and another point (idem).
    • Select a line and a symmetry point (idem).
  5. A constraint is added.
  6. Optionally keep creating constraints.
  7. To finish, right-click or press Esc, or start another geometry or constraint creation tool.

Einmal-Ausführen-Modus

  1. Do one of the following:
    • Select two points and a symmetry point (in that order).
    • Select two points and a symmetry line (in any order).
    • Select a line and a symmetry point (idem).
  2. Invoke the tool as explained above, or with the following additional option:
  3. A constraint is added.

Hinweise

Skripten

Zwei Punkte und eine Symmetrielinie:

Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line1, PointOfLine1, Line2, PointOfLine2, SymmetryLine))

Zwei Punkte und ein Symmetriepunkt:

Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line1, PointOfLine1, Line2, PointOfLine2, LineS, PointOfLineS))

Eine Linie und ein Symmetriepunkt (In der GUI kann man eine Linie und einen Punkt auswählen, aber es wird intern die gleiche Form wie oben verwendet, mit den beiden Endpunkten der gleichen Linie):

Sketch.addConstraint(Sketcher.Constraint('Symmetric', Line, 1, Line, 2, LineS, PointOfLineS))

Die Skizzierer Skripten Seite erklärt die Werte, die für Linie1, Linie2, LinieS, Linie, PunktVonLinie1, PunktVonLinie2 und PunktVonLinieS verwendet werden können, und enthält weitere Beispiele, wie man Beschränkungen aus Python Skripten erstellt.